From 95e8068d3e648346c4124c2eba6a5469d9c7bca7 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Wed, 9 Jun 1993 12:30:13 +0000 Subject: [PATCH] * process.c (sigchld_handler): Add cast, to avoid warnings on Linux. --- src/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/process.c b/src/process.c index d0beafe6ad9..d661aa92425 100644 --- a/src/process.c +++ b/src/process.c @@ -2819,7 +2819,7 @@ sigchld_handler (signo) synch_process_retcode = WRETCODE (w); else if (WIFSIGNALED (w)) #ifndef VMS - synch_process_death = sys_siglist[WTERMSIG (w)]; + synch_process_death = (char *) sys_siglist[WTERMSIG (w)]; #else synch_process_death = sys_errlist[WTERMSIG (w)]; #endif -- 2.30.2